Popup Menu Search
https://gyazo.com/f6f653b2614b2c7af76c8b8165c78f13
https://gyazo.com/6719de7d1a0c6a4f3d7eb01fe9a4cbdd
選択文字列を検索したいときがあるので
既に作られていたものがあったので、参考にした
code
未使用
code:GoogleSearch.js
scrapbox.PopupMenu.addButton({
title: '\uf002G',
onClick: (text) => {
window.open(https://www.google.co.jp/search?q=${text})
},
})
code:LearnersDictionary.js
scrapbox.PopupMenu.addButton({
title: '\uf002En',
onClick: (text) => {
window.open(https://learnersdictionary.com/definition/${text})
},
})
code:GoogleTranslate.js
scrapbox.PopupMenu.addButton({
title: '\uf1ab',
onClick: (text) => {
window.open(https://translate.google.com/?sl=en&tl=ja&text=${text})
},
})
2021-07-06 titleをFont Awesomeのアイコンに変更